home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
Misc Utils
/
FastPerfTrig 1.0 rel
/
FastPerfTrigs.Int
< prev
next >
Wrap
Text File
|
1992-12-06
|
436b
|
20 lines
unit FastPerfTrigs;
(* Unit to implement fast trig functions using lookup tables *)
interface
const
TableLoadErr = resNotFound;
WrongVersionErr = -2;
function InitTrigs: OSErr;
procedure CloseTrigs;
function GetSinResolution: integer;
function GetCosResolution: integer;
function GetTanResolution: integer;
function FSin (x: real): real;
function FCos (x: real): real;
function FTan (x: real): real;
implementation
end.